home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / SURefItr.idl < prev    next >
Encoding:
Text File  |  1997-01-01  |  1.2 KB  |  50 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993-1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _SUREFITR_
  4. #define _SUREFITR_
  5.  
  6. #ifndef _ODOBJECT_
  7. #include "ODObject.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Classes defined in this interface
  12. //==============================================================================
  13. interface   ODStorageUnitRefIterator;
  14.  
  15. //==============================================================================
  16. // Classes used by this interface
  17. //==============================================================================
  18. interface    ODStorageUnit;
  19.  
  20. //==============================================================================
  21. // ODStorageUnitRefIterator
  22. //==============================================================================
  23.  
  24. interface ODStorageUnitRefIterator : ODObject
  25. {
  26.  
  27.     void  First(out ODStorageUnitRef ref);
  28.     
  29.     void     Next(out ODStorageUnitRef ref);
  30.   
  31.     ODBoolean      IsNotComplete();
  32.   
  33. #ifdef __SOMIDL__
  34.     implementation
  35.     {
  36.         majorversion = 1; minorversion = 0;
  37.           functionprefix = ODStorageUnitRefIterator;
  38.         override:
  39.             somUninit;
  40.         releaseorder:
  41.             reserved1,
  42.             First,
  43.             Next,
  44.             IsNotComplete;    
  45.     };
  46. #endif
  47. };
  48.  
  49. #endif  // _SUREFITR_
  50.